home *** CD-ROM | disk | FTP | other *** search
/ PC PowerPlay 49 / PCPP49a.iso / editors / sofsdk / SoF SDK.msi / _FE634FAC5B1843CF8A03805FFF6F5ECB < prev   
Encoding:
Text File  |  2000-03-27  |  822 b   |  28 lines

  1. #include "../common/header.ds"
  2. output "p:/base/ds/tsr1"
  3.  
  4. /////////////////////////////////////////////////
  5. // Declare
  6.  
  7. local entity bloke
  8. local entity inplayer
  9. local int sig
  10.  
  11. /////////////////////////////////////////////////
  12. // Assign
  13.  
  14. bloke = find entity with targetname "subway_bloke1"
  15. inplayer = find entity player
  16. /////////////////////////////////////////////////
  17. // Action
  18.  
  19. play sound "enemy/sk1/tsr1/wake3.wav" for entity inplayer at volume 0.9 on channel CHAN_AUTO
  20. animate entity bloke performing action STD_R_N_PK_N by moving [256,0,0] signaling sig // 336
  21. wait for all clearing sig
  22. // animate entity bloke performing action STD_R_N_PK_N by moving [0,-208,0] signaling sig
  23. // wait for all clearing sig
  24. // animate entity bloke performing action SCRIPT_RELEASE
  25. remove entity bloke
  26.  
  27.  
  28. // End